home *** CD-ROM | disk | FTP | other *** search
- #if defined(FW_BUILD_WIN) && !defined(FW_BUILD_WIN32S) && !defined(FW_BUILD_WINNT)
- //========================================================================================
- //
- // File: FWWep.cpp
- // Release Version: $ 1.0d1 $
- //
- // Creation Date: 3/28/94
- //
- // Copyright: © 1994 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #include <Windows.h>
-
- // prevent WEP from being mangled
-
- extern "C"
- {
- int CALLBACK WEP(int /* sys_exit */);
- };
-
- int CALLBACK WEP(int /* sys_exit */)
- {
- return TRUE;
- }
-
- #endif
-
-